# Format: Three tab-separated columns 
# Column #1 is the codepage byte sequence.
# Column #2 is the Unicode scalar value.
# Column #3 is the fallback indicator.
# The fallback indicator can have one of the following values:
#   |0 for exact roundtrip mapping.
#   |1 for mapping particular code page byte to Unicode value.
#       Use this indicator in case one codepage byte sequence
#       maps to multiple Unicode value. For instance if A145 of
#       a particular code page byte map to Unicode 00B7 and 2022,
#       then defining the mapping of A145 to  00B7 with indicator
#       0 and mapping of A145 to 2022 with indicator 1 would
#       mean that code page byte A145 will map to Unicode 00B7
#       when converting code byte values to Unicode values.
#   |2 for mapping Unicode to a particular code page byte. Use this
#       indicator in case more than one codepage byte sequence
#       maps to a particular Unicode value. For instance if FB56
#       and FD6E of a particular code page byte map to same
#       Unicode 763B, then defining the mapping of FB56 to 763B
#       with indicator 0 and mapping of FB6E to 763B with indicator
#       2 would mean that Unicode 763B will fallback to FB56 code
#       page byte when converting Unicode values to codepage byte
#       values.
# Sample Format:
# 0x01	0x0001	|0
# 0xA9E5	0x24B4	|0
#